eef00a9ec7d9561eeac087d743a852e3d34d67ba,ambari-server/src/main/java/org/apache/ambari/server/orm/entities/WidgetLayoutUserWidgetEntity.java,WidgetLayoutUserWidgetEntity,equals,#Object#,94

Before Change



    WidgetLayoutUserWidgetEntity that = (WidgetLayoutUserWidgetEntity) o;

    if (widgetLayout.getId() != that.widgetLayout.getId()) return false;
    if (widget.getId() != that.widget.getId()) return false;

    return true;

After Change



    WidgetLayoutUserWidgetEntity that = (WidgetLayoutUserWidgetEntity) o;

    return (widgetLayout.equals(that.widgetLayout) && widget.equals(that.widget));
  }

  @Override